home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
programming
/
source
/
thesource6.dms
/
thesource6.adf
/
Source
/
Misc
/
ReactDiff.lha
/
ReactionDiffusion
/
makefile
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1993-01-29
|
311 b
|
17 lines
# spots by reaction-diffusion
CFLAGS = -O -I. -I/usr/include
LIBS = /usr/local/lib/X11R4/libX11.a -lm
OBJ1 = linear.o graphics.o
OBJ2 = spots.o graphics.o
current: spots linear
linear: $(OBJ1) makefile
cc -o linear $(OBJ1) $(LIBS) $(CFLAGS)
spots: $(OBJ2) makefile
cc -o spots $(OBJ2) $(LIBS) $(CFLAGS)